home *** CD-ROM | disk | FTP | other *** search
/ CD Concept 6 / CD Concept 06.iso / mac / UTILITAIRE / Little Smalltalk v3.1.4 / C Source / Headers / CGraphicsPane.h next >
Text File  |  1994-10-16  |  666b  |  21 lines

  1. //=============================================================================
  2. //    Little Smalltalk, version 3
  3. //    Written by Tim Budd, Oregon State University, July 1988
  4. //
  5. //    Symantec Think Class Library interface code ⌐Julian Barkway, August 1994 
  6. //
  7. //    CGraphicsPane.h
  8. //    ---------------
  9. //    This class implements a graphics pane as a sub-class of CPicture.
  10. //=============================================================================
  11.  
  12. #ifndef _H_CGraphicsPane
  13. #define _H_CGraphicsPane
  14.  
  15. #include "CPicture.h"
  16.  
  17. struct CGraphicsPane : CPicture {
  18.     void    IGraphicsPane     (CView *encl, CBureaucrat *super, 
  19.                             SizingOption hSizing, SizingOption vSizing);
  20. };
  21. #endif